Meta description:
When making an action that deals Acid damage, the character can spend 2 SP to create a 2m wide acid pool at the impact point for the next 5 seconds. The acid pool inflicts 1 Acid damage to any creature starting their second on it and if they fail a Vigor test. PS: The acid is flammable.
-
Name:
mAcidPoolI
-
Displayed name:
Acid Pool I
-
Description:
When making an action that deals Acid damage, the character can spend 2 SP to create a 2m wide acid pool at the impact point for the next 5 seconds. The acid pool inflicts 1 Acid damage to any creature starting their second on it and if they fail a Vigor test. PS: The acid is flammable.
-
Cost:
expCost(500,1200)-0
-
Script:
-
Duration:
-1
-
Type:
0
-
Recurrent script:
-
Add ons:
-
Condition:
action:tagsContain([[acidDamage]])
-
Description:
-
Variables:
vPoolSize = 2 vPoolDamage = 1
-
Script:
-
Action effects:
-
Use case:
vUsePool
-
Name:
Acid pool
-
Description:
The character can spend 2 SP to create a vPoolSize.string meter wide acid pool at this impact point for the next 5 seconds.
-
Script:
effect = character:createEffect([[mAcidPool]]) effect.displayName.value = [[Acid pool]] effect.description.value = [[Every creature starting their second in the acid pool have to make a Vigor test. On a failed test the acid pool inflicts {{vPoolDamage}} Acid damage. PS: The acid is flammable.]] effect.duration.value = [[5]] effect:activate()
-
Variables:
vUsePool = ToggleVariable([[vUsePool]],[[Acid pool]])
-
-
-
Upgrades:
-
Name:
mAcidPoolII
-
Displayed name:
Acid Pool II
-
Description:
Increases the acid pool diameter by 2 meter.
-
Cost:
expCost(850,2000)-250
-
Script:
master.displayName:set([[Acid Pool II]]) master.description:replace([[2m wide]],[[4m wide]]) master.addOns[1].variables:replace([[vPoolSize = 2]],[[vPoolSize = 4]])
-
Duration:
-1
-
Type:
0
-
Recurrent script:
-
Add ons:
-
Name:
mAcidPoolIII
-
Displayed name:
Acid Pool III
-
Description:
Increases the acid pool damage per second by 1.
-
Cost:
expCost(1700,2000)-425
-
Script:
master.displayName:set([[Acid Pool III]]) master.description:replace([[inflicts 1 Acid]],[[inflicts 2 Acid]]) master.addOns[1].variables:replace([[vPoolDamage = 1]],[[vPoolDamage = 2]])
-
Duration:
-1
-
Type:
0
-
Recurrent script:
-
Add ons:
-